[]
        
(Showing Draft Content)

dashboard.VisualNS.CommandService

类: CommandService

dashboard.VisualNS.CommandService

Table of contents

构造方法

方法

构造方法

constructor

new CommandService()

方法

execute

execute(desc): void

执行命令。

参数

名称 类型 描述
desc ICommandDescription[] 命令描述。

返回值

void

示例代码

// 运行一个命令切换容器标签
this.visualHost.commandService.execute([
	{
	 name: 'SelectTab',
	 payload: {
	  target: 'myTabContainer',
	  index: 0,
	 }
	}
])